Clover coverage report - bexee - 0.1
Coverage timestamp: Do Dez 16 2004 13:24:06 CET
file stats: LOC: 94   Methods: 11
NCLOC: 48   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
FlowImpl.java - 75% 72.7% 73.9%
coverage coverage
 1   
 /*
 2   
  * $Id: FlowImpl.java,v 1.1 2004/12/15 14:18:13 patforna Exp $
 3   
  *
 4   
  * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
 5   
  * Berne University of Applied Sciences
 6   
  * School of Engineering and Information Technology
 7   
  * All rights reserved.
 8   
  */
 9   
 package bexee.model.activity.impl;
 10   
 
 11   
 import java.util.ArrayList;
 12   
 import java.util.List;
 13   
 
 14   
 import bexee.core.ProcessController;
 15   
 import bexee.core.ProcessInstance;
 16   
 import bexee.model.BPELElementVisitor;
 17   
 import bexee.model.StandardAttributes;
 18   
 import bexee.model.activity.Activity;
 19   
 import bexee.model.activity.Flow;
 20   
 import bexee.model.elements.Links;
 21   
 
 22   
 /**
 23   
  * Default implementation of the <code>Flow</code> activity.
 24   
  * 
 25   
  * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:13 $
 26   
  * @author Patric Fornasier
 27   
  * @author Pawel Kowalski
 28   
  */
 29   
 public class FlowImpl extends AbstractActivity implements Flow {
 30   
 
 31   
     private Links links = null;
 32   
 
 33   
     private List activities = null;
 34   
 
 35   
     //**************************************************/
 36   
     // c'tors
 37   
     //**************************************************/
 38   
 
 39  28
     public FlowImpl() {
 40  28
         this(null);
 41   
     }
 42   
 
 43  28
     public FlowImpl(StandardAttributes standardAttributes) {
 44  28
         super(standardAttributes);
 45   
 
 46  28
         init();
 47   
     }
 48   
 
 49  28
     private void init() {
 50  28
         activities = new ArrayList();
 51   
     }
 52   
 
 53   
     //**************************************************/
 54   
     // bexee.model.activity.Flow
 55   
     //**************************************************/
 56   
 
 57  0
     public void setLinks(Links links) {
 58  0
         this.links = links;
 59   
     }
 60   
 
 61  0
     public Links getLinks() {
 62  0
         return links;
 63   
     }
 64   
 
 65  50
     public void activity(Activity activity) {
 66  50
         addActivity(activity);
 67   
     }
 68   
 
 69  50
     public void addActivity(Activity activity) {
 70  50
         activities.add(activity);
 71   
     }
 72   
 
 73  0
     public void setActivities(List activities) {
 74  0
         this.activities = activities;
 75   
     }
 76   
 
 77  28
     public List getActivities() {
 78  28
         return activities;
 79   
     }
 80   
 
 81   
     //**************************************************/
 82   
     // bexee.core.BPELElement
 83   
     //**************************************************/
 84   
 
 85  6
     public void accept(ProcessController controller, ProcessInstance instance)
 86   
             throws Exception {
 87  6
         controller.process(this, instance);
 88   
     }
 89   
 
 90  24
     public void accept(BPELElementVisitor elementVisitor) {
 91  24
         elementVisitor.visit(this);
 92   
     }
 93   
 
 94   
 }